home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / l_rmnd16.arc / REMIND.BAT < prev    next >
DOS Batch File  |  1989-02-01  |  825b  |  21 lines

  1. echo off
  2. rem REMIND.BAT
  3. rem ╔═════════════════════════════════════════════════════════════════════════╗
  4. rem ║ Note:  The "/i:7" in the command below will trigger the reminder every  ║
  5. rem ║ 7 days.  To trigger a reminder based on the day of the week, the day of ║
  6. rem ║ the month, or at a different interval see the documentation file        ║
  7. rem ║ lcg-rmnd.doc for the appropriate command line switches.                 ║
  8. rem ╚═════════════════════════════════════════════════════════════════════════╝
  9. rem
  10. lcg-rmnd /i:7
  11. if errorlevel 3 goto :NOBACK
  12. if not errorlevel 2 goto :NOBACK
  13. echo Beginning backup...
  14. lcg-rmnd /reset
  15. rem ╔════════════════════════════════════════╗
  16. rem ║ INSERT YOUR DISK BACK-UP COMMANDS HERE ║
  17. rem ╚════════════════════════════════════════╝
  18. rem
  19. :NOBACK
  20. echo Done with remind.bat.
  21.